LanguageExt.Core

LanguageExt.Core DataTypes BigInt

Contents

struct bigint Source #

BigInteger convenience wrapper

Fields

field BigInteger Value Source #

field bigint One = new (1) Source #

Gets a value that represents the number one (1).

Parameters

returns

An object whose value is one (1).

field bigint MinusOne = new (-1) Source #

Gets a value that represents the number negative one (-1).

Parameters

returns

An integer whose value is negative one (-1).

field bigint Zero = new (0) Source #

Gets a value that represents the number 0 (zero).

Parameters

returns

An integer whose value is 0 (zero).

Properties

property bool IsEven Source #

Indicates whether the value of the current bigint object is an even number.

Parameters

returns

true if the value of the bigint object is an even number; otherwise, false.

property bool IsZero Source #

Indicates whether the value of the current bigint object is bigint.Zero.

Parameters

returns

true if the value of the bigint object is bigint.Zero; otherwise, false.

property bool IsPowerOfTwo Source #

Indicates whether the value of the current bigint object is a power of two.

Parameters

returns

true if the value of the bigint object is a power of two; otherwise, false.

property bool IsOne Source #

Indicates whether the value of the current bigint object is bigint.One.

Parameters

returns

true if the value of the bigint object is bigint.One; otherwise, false.

property int Sign Source #

Gets a number that indicates the sign (negative, positive, or zero) of the current bigint object.

Parameters

returns

A number that indicates the sign of the bigint object, as shown in the following table.NumberDescription-1The value of this object is negative.0The value of this object is 0 (zero).1The value of this object is positive.

Constructors

constructor bigint (BigInteger value) Source #

Initializes a new instance of bigint structure using provided BigInteger value.

Parameters

param value

A big integer value to initialise this structure with

constructor bigint (byte[] value) Source #

Initializes a new instance of the bigint structure using the values in a byte array.

value: An array of byte values in little-endian order.

constructor bigint (decimal value) Source #

Initializes a new instance of the bigint structure using a System.Decimal value.

value: A decimal number.

constructor bigint (double value) Source #

Initializes a new instance of the bigint structure using a double-precision floating-point value.

value: A double-precision floating-point value.

constructor bigint (int value) Source #

Initializes a new instance of the bigint structure using a 32-bit signed integer value.

value: A 32-bit signed integer.

constructor bigint (long value) Source #

Initializes a new instance of the bigint structure using a 64-bit signed integer value.

value: A 64-bit signed integer.

constructor bigint (float value) Source #

Initializes a new instance of the bigint structure using a single-precision floating-point value.

value: A single-precision floating-point value.

constructor bigint (uint value) Source #

Initializes a new instance of the bigint structure using an unsigned 32-bit integer value.

value: An unsigned 32-bit integer value.

constructor bigint (ulong value) Source #

Initializes a new instance of the bigint structure with an unsigned 64-bit integer value.

value: An unsigned 64-bit integer.

Methods

method bigint Abs (bigint value) Source #

Gets the absolute value of a bigint object.

Parameters

returns

The absolute value of value.

method bigint Add (bigint left, bigint right) Source #

Adds two bigint values and returns the result.

Parameters

returns

The sum of left and right.

method int Compare (bigint left, bigint right) Source #

Compares two bigint values and returns an integer that indicates whether the first value is less than, equal to, or greater than the second value.

Parameters

returns

A signed integer that indicates the relative values of left and right, as shown in the following table.ValueConditionLess than zeroleft is less than right.Zeroleft equals right.Greater than zeroleft is greater than right.

method bigint Divide (bigint dividend, bigint divisor) Source #

Divides one bigint value by another and returns the result.

dividend: The value to be divided.

divisor: The value to divide by.

Parameters

returns

The quotient of the division.

method (bigint Quotient, bigint Remainder) DivRem (bigint dividend, bigint divisor) Source #

Divides one bigint value by another, returns the quotient and remainder.

dividend: The value to be divided.

divisor: The value to divide by.

Parameters

returns

The quotient and remainder of the division as a tuple

method bigint GreatestCommonDivisor (bigint left, bigint right) Source #

Finds the greatest common divisor of two bigint values.

left: The first value.

right: The second value.

Parameters

returns

The greatest common divisor of left and right.

method double Log (bigint value) Source #

Returns the natural (base e) logarithm of a specified number.

value: The number whose logarithm is to be found.

Parameters

returns

The natural (base e) logarithm of value, as shown in the table in the Remarks section.

method double Log (bigint value, double baseValue) Source #

Returns the logarithm of a specified number in a specified base.

value: A number whose logarithm is to be found.

baseValue: The base of the logarithm.

Parameters

returns

The base baseValue logarithm of value, as shown in the table in the Remarks section.

method double Log10 (bigint value) Source #

Returns the base 10 logarithm of a specified number.

value: A number whose logarithm is to be found.

Parameters

returns

The base 10 logarithm of value, as shown in the table in the Remarks section.

method bigint Max (bigint left, bigint right) Source #

Returns the larger of two bigint values.

left: The first value to compare.

right: The second value to compare.

Parameters

returns

The left or right parameter, whichever is larger.

method bigint Min (bigint left, bigint right) Source #

Returns the smaller of two bigint values.

left: The first value to compare.

right: The second value to compare.

Parameters

returns

The left or right parameter, whichever is smaller.

method bigint ModPow (bigint value, bigint exponent, bigint modulus) Source #

Performs modulus division on a number raised to the power of another number.

value: The number to raise to the exponent power.

exponent: The exponent to raise value by.

modulus: The number by which to divide value raised to the exponent power.

Parameters

returns

The remainder after dividing value exponent by modulus.

method bigint Multiply (bigint left, bigint right) Source #

Returns the product of two bigint values.

left: The first number to multiply.

right: The second number to multiply.

Parameters

returns

The product of the left and right parameters.

method bigint Negate (bigint value) Source #

Negates a specified bigint value.

value: The value to negate.

Parameters

returns

The result of the value parameter multiplied by negative one (-1).

method bigint Parse (string value, NumberStyles style) Source #

Converts the string representation of a number in a specified style to its bigint equivalent.

value: A string that contains a number to convert.

style: A bitwise combination of the enumeration values that specify the permitted format of value.

Parameters

returns

A value that is equivalent to the number specified in the value parameter.

method bigint Parse (string value, IFormatProvider provider) Source #

Converts the string representation of a number in a specified culture-specific format to its bigint equivalent.

value: A string that contains a number to convert.

provider: An object that provides culture-specific formatting information about value.

Parameters

returns

A value that is equivalent to the number specified in the value parameter.

method bigint Parse (string value) Source #

Converts the string representation of a number to its bigint equivalent.

value: A string that contains the number to convert.

Parameters

returns

A value that is equivalent to the number specified in the value parameter.

method bigint Parse (string value, NumberStyles style, IFormatProvider provider) Source #

Converts the string representation of a number in a specified style and culture-specific format to its bigint equivalent.

value: A string that contains a number to convert.

style: A bitwise combination of the enumeration values that specify the permitted format of value.

provider: An object that provides culture-specific formatting information about value.

Parameters

returns

A value that is equivalent to the number specified in the value parameter.

method bigint Pow (bigint value, int exponent) Source #

Raises a bigint value to the power of a specified value.

value: The number to raise to the exponent power.

exponent: The exponent to raise value by.

Parameters

returns

The result of raising value to the exponent power.

method bigint Remainder (bigint dividend, bigint divisor) Source #

Performs integer division on two bigint values and returns the remainder.

dividend: The value to be divided.

divisor: The value to divide by.

Parameters

returns

The remainder after dividing dividend by divisor.

method bigint Subtract (bigint left, bigint right) Source #

Subtracts one bigint value from another and returns the result.

left: The value to subtract from (the minuend).

right: The value to subtract (the subtrahend).

Parameters

returns

The result of subtracting right from left.

method Option<bigint> TryParse (string value, NumberStyles style, IFormatProvider provider) Source #

Tries to convert the string representation of a number in a specified style and culture-specific format to its bigint equivalent, and returns a value that indicates whether the conversion succeeded.

value: The string representation of a number. The string is interpreted using the style specified by style.

style: A bitwise combination of enumeration values that indicates the style elements that can be present in value. A typical value to specify is System.Globalization.NumberStyles.Integer.

provider: An object that supplies culture-specific formatting information about value.

Parameters

returns

Optional value

method Option<bigint> TryParse (string value) Source #

Tries to convert the string representation of a number to its bigint equivalent, and returns a value that indicates whether the conversion succeeded.

value: The string representation of a number.

Parameters

returns

Optional value

method int CompareTo (long other) Source #

Compares this instance to a signed 64-bit integer and returns an integer that indicates whether the value of this instance is less than, equal to, or greater than the value of the signed 64-bit integer.

other: The signed 64-bit integer to compare.

Parameters

returns

A signed integer value that indicates the relationship of this instance to other, as shown in the following table.Return valueDescriptionLess than zeroThe current instance is less than other.ZeroThe current instance equals other.Greater than zeroThe current instance is greater than other.

method int CompareTo (ulong other) Source #

Compares this instance to an unsigned 64-bit integer and returns an integer that indicates whether the value of this instance is less than, equal to, or greater than the value of the unsigned 64-bit integer.

other: The unsigned 64-bit integer to compare.

Parameters

returns

A signed integer that indicates the relative value of this instance and other, as shown in the following table.Return valueDescriptionLess than zeroThe current instance is less than other.ZeroThe current instance equals other.Greater than zeroThe current instance is greater than other.

method int CompareTo (BigInteger other) Source #

Compares this instance to a second bigint and returns an integer that indicates whether the value of this instance is less than, equal to, or greater than the value of the specified object.

other: The object to compare.

Parameters

returns

A signed integer value that indicates the relationship of this instance to other, as shown in the following table.Return valueDescriptionLess than zeroThe current instance is less than other.ZeroThe current instance equals other.Greater than zeroThe current instance is greater than other.

method int CompareTo (bigint other) Source #

Compares this instance to a second bigint and returns an integer that indicates whether the value of this instance is less than, equal to, or greater than the value of the specified object.

other: The object to compare.

Parameters

returns

A signed integer value that indicates the relationship of this instance to other, as shown in the following table.Return valueDescriptionLess than zeroThe current instance is less than other.ZeroThe current instance equals other.Greater than zeroThe current instance is greater than other.

method bool Equals (long other) Source #

Returns a value that indicates whether the current instance and a signed 64-bit integer have the same value.

other: The signed 64-bit integer value to compare.

Parameters

returns

true if the signed 64-bit integer and the current instance have the same value; otherwise, false.

method bool Equals (BigInteger other) Source #

Returns a value that indicates whether the current instance and a specified bigint object have the same value.

other: The object to compare.

Parameters

returns

true if this bigint object and other have the same value; otherwise, false.

method bool Equals (bigint other) Source #

Returns a value that indicates whether the current instance and a specified bigint object have the same value.

other: The object to compare.

Parameters

returns

true if this bigint object and other have the same value; otherwise, false.

method bool Equals (object? obj) Source #

Returns a value that indicates whether the current instance and a specified object have the same value.

obj: The object to compare.

Parameters

returns

true if the obj parameter is a bigint object or a type capable of implicit conversion to a bigint value, and its value is equal to the value of the current bigint object; otherwise, false.

method bool Equals (ulong other) Source #

Returns a value that indicates whether the current instance and an unsigned 64-bit integer have the same value.

other: The unsigned 64-bit integer to compare.

Parameters

returns

true if the current instance and the unsigned 64-bit integer have the same value; otherwise, false.

method int GetHashCode () Source #

Returns the hash code for the current bigint object.

Parameters

returns

A 32-bit signed integer hash code.

method int CompareTo (object? obj) Source #

method byte[] ToByteArray () Source #

Converts a bigint value to a byte array.

Parameters

returns

The value of the current bigint object converted to an array of bytes.

method string ToString () Source #

Converts the numeric value of the current bigint object to its equivalent string representation.

Parameters

returns

The string representation of the current bigint value.

method string ToString (string format) Source #

Converts the numeric value of the current bigint object to its equivalent string representation by using the specified format.

format: A standard or custom numeric format string.

Parameters

returns

The string representation of the current bigint value in the format specified by the format parameter.

method string ToString (IFormatProvider provider) Source #

Converts the numeric value of the current bigint object to its equivalent string representation by using the specified culture-specific formatting information.

provider: An object that supplies culture-specific formatting information.

Parameters

returns

The string representation of the current bigint value in the format specified by the provider parameter.

method string ToString (string format, IFormatProvider provider) Source #

Converts the numeric value of the current bigint object to its equivalent string representation by using the specified format and culture-specific format information.

format: A standard or custom numeric format string.

provider: An object that supplies culture-specific formatting information.

Parameters

returns

The string representation of the current bigint value as specified by the format and provider parameters.

Operators

operator + (bigint value) Source #

Returns the value of the bigint operand. (The sign of the operand is unchanged.)

value: An integer value.

Parameters

returns

The value of the value operand.

operator + (bigint left, bigint right) Source #

Adds the values of two specified bigint objects.

left: The first value to add.

right: The second value to add.

Parameters

returns

The sum of left and right.

operator - (bigint value) Source #

Negates a specified BigInteger value.

value: The value to negate.

Parameters

returns

The result of the value parameter multiplied by negative one (-1).

operator - (bigint left, bigint right) Source #

Subtracts a bigint value from another bigint value.

left: The value to subtract from (the minuend).

right: The value to subtract (the subtrahend).

Parameters

returns

The result of subtracting right from left.

operator ~ (bigint value) Source #

Returns the bitwise one's complement of a bigint value.

value: An integer value.

Parameters

returns

The bitwise one's complement of value.

operator ++ (bigint value) Source #

Increments a bigint value by 1.

value: The value to increment.

Parameters

returns

The value of the value parameter incremented by 1.

operator -- (bigint value) Source #

Decrements a bigint value by 1.

value: The value to decrement.

Parameters

returns

The value of the value parameter decremented by 1.

operator * (bigint left, bigint right) Source #

Multiplies two specified bigint values.

left: The first value to multiply.

right: The second value to multiply.

Parameters

returns

The product of left and right.

operator / (bigint dividend, bigint divisor) Source #

Divides a specified bigint value by another specified bigint value by using integer division.

dividend: The value to be divided.

divisor: The value to divide by.

Parameters

returns

The integral result of the division.

operator % (bigint dividend, bigint divisor) Source #

Returns the remainder that results from division with two specified bigint values.

dividend: The value to be divided.

divisor: The value to divide by.

Parameters

returns

The remainder that results from the division.

operator & (bigint left, bigint right) Source #

Performs a bitwise And operation on two bigint values.

left: The first value.

right: The second value.

Parameters

returns

The result of the bitwise And operation.

operator | (bigint left, bigint right) Source #

Performs a bitwise Or operation on two bigint values.

left: The first value.

right: The second value.

Parameters

returns

The result of the bitwise Or operation.

operator ^ (bigint left, bigint right) Source #

Performs a bitwise exclusive Or (XOr) operation on two bigint values.

left: The first value.

right: The second value.

Parameters

returns

The result of the bitwise Or operation.

operator << (bigint value, int shift) Source #

Shifts a bigint value a specified number of bits to the left.

value: The value whose bits are to be shifted.

shift: The number of bits to shift value to the left.

Parameters

returns

A value that has been shifted to the left by the specified number of bits.

operator >> (bigint value, int shift) Source #

Shifts a bigint value a specified number of bits to the right.

value: The value whose bits are to be shifted.

shift: The number of bits to shift value to the right.

Parameters

returns

A value that has been shifted to the right by the specified number of bits.

operator == (bigint left, ulong right) Source #

Returns a value that indicates whether a bigint value and an unsigned long integer value are equal.

left: The first value to compare.

right: The second value to compare.

Parameters

returns

true if the left and right parameters have the same value; otherwise, false.

operator == (BigInteger left, bigint right) Source #

Returns a value that indicates whether the values of two bigint objects are equal.

left: The first value to compare.

right: The second value to compare.

Parameters

returns

true if the left and right parameters have the same value; otherwise, false.

operator == (bigint left, BigInteger right) Source #

Returns a value that indicates whether the values of two bigint objects are equal.

left: The first value to compare.

right: The second value to compare.

Parameters

returns

true if the left and right parameters have the same value; otherwise, false.

operator == (long left, bigint right) Source #

Returns a value that indicates whether a signed long integer value and a bigint value are equal.

left: The first value to compare.

right: The second value to compare.

Parameters

returns

true if the left and right parameters have the same value; otherwise, false.

operator == (bigint left, long right) Source #

Returns a value that indicates whether a bigint value and a signed long integer value are equal.

left: The first value to compare.

right: The second value to compare.

Parameters

returns

true if the left and right parameters have the same value; otherwise, false.

operator == (bigint left, bigint right) Source #

Returns a value that indicates whether the values of two bigint objects are equal.

left: The first value to compare.

right: The second value to compare.

Parameters

returns

true if the left and right parameters have the same value; otherwise, false.

operator == (ulong left, bigint right) Source #

Returns a value that indicates whether an unsigned long integer value and a bigint value are equal.

left: The first value to compare.

right: The second value to compare.

Parameters

returns

true if the left and right parameters have the same value; otherwise, false.

operator != (ulong left, bigint right) Source #

Returns a value that indicates whether a 64-bit unsigned integer and a bigint value are not equal.

left: The first value to compare.

right: The second value to compare.

Parameters

returns

true if left and right are not equal; otherwise, false.

operator != (bigint left, ulong right) Source #

Returns a value that indicates whether a bigint value and a 64-bit unsigned integer are not equal.

left: The first value to compare.

right: The second value to compare.

Parameters

returns

true if left and right are not equal; otherwise, false.

operator != (long left, bigint right) Source #

Returns a value that indicates whether a 64-bit signed integer and a bigint value are not equal.

left: The first value to compare.

right: The second value to compare.

Parameters

returns

true if left and right are not equal; otherwise, false.

operator != (bigint left, long right) Source #

Returns a value that indicates whether a bigint value and a 64-bit signed integer are not equal.

left: The first value to compare.

right: The second value to compare.

Parameters

returns

true if left and right are not equal; otherwise, false.

operator != (bigint left, bigint right) Source #

Returns a value that indicates whether two bigint objects have different values.

left: The first value to compare.

right: The second value to compare.

Parameters

returns

true if left and right are not equal; otherwise, false.

operator != (BigInteger left, bigint right) Source #

Returns a value that indicates whether two bigint objects have different values.

left: The first value to compare.

right: The second value to compare.

Parameters

returns

true if left and right are not equal; otherwise, false.

operator != (bigint left, BigInteger right) Source #

Returns a value that indicates whether two bigint objects have different values.

left: The first value to compare.

right: The second value to compare.

Parameters

returns

true if left and right are not equal; otherwise, false.

operator < (long left, bigint right) Source #

Returns a value that indicates whether a 64-bit signed integer is less than a bigint value.

left: The first value to compare.

right: The second value to compare.

Parameters

returns

true if left is less than right; otherwise, false.

operator < (bigint left, ulong right) Source #

Returns a value that indicates whether a bigint value is less than a 64-bit unsigned integer.

left: The first value to compare.

right: The second value to compare.

Parameters

returns

true if left is less than right; otherwise, false.

operator < (ulong left, bigint right) Source #

Returns a value that indicates whether a 64-bit unsigned integer is less than a bigint value.

left: The first value to compare.

right: The second value to compare.

Parameters

returns

true if left is less than right; otherwise, false.

operator < (bigint left, bigint right) Source #

Returns a value that indicates whether a bigint value is less than another bigint value.

left: The first value to compare.

right: The second value to compare.

Parameters

returns

true if left is less than right; otherwise, false.

operator < (BigInteger left, bigint right) Source #

Returns a value that indicates whether a bigint value is less than another bigint value.

left: The first value to compare.

right: The second value to compare.

Parameters

returns

true if left is less than right; otherwise, false.

operator < (bigint left, BigInteger right) Source #

Returns a value that indicates whether a bigint value is less than another bigint value.

left: The first value to compare.

right: The second value to compare.

Parameters

returns

true if left is less than right; otherwise, false.

operator < (bigint left, long right) Source #

Returns a value that indicates whether a bigint value is less than a 64-bit signed integer.

left: The first value to compare.

right: The second value to compare.

Parameters

returns

true if left is less than right; otherwise, false.

operator > (ulong left, bigint right) Source #

Returns a value that indicates whether a bigint value is greater than a 64-bit unsigned integer.

left: The first value to compare.

right: The second value to compare.

Parameters

returns

true if left is greater than right; otherwise, false.

operator > (bigint left, bigint right) Source #

Returns a value that indicates whether a bigint value is greater than another bigint value.

left: The first value to compare.

right: The second value to compare.

Parameters

returns

true if left is greater than right; otherwise, false.

operator > (BigInteger left, bigint right) Source #

Returns a value that indicates whether a bigint value is greater than another bigint value.

left: The first value to compare.

right: The second value to compare.

Parameters

returns

true if left is greater than right; otherwise, false.

operator > (bigint left, BigInteger right) Source #

Returns a value that indicates whether a bigint value is greater than another bigint value.

left: The first value to compare.

right: The second value to compare.

Parameters

returns

true if left is greater than right; otherwise, false.

operator > (long left, bigint right) Source #

Returns a value that indicates whether a 64-bit signed integer is greater than a bigint value.

left: The first value to compare.

right: The second value to compare.

Parameters

returns

true if left is greater than right; otherwise, false.

operator > (bigint left, long right) Source #

Returns a value that indicates whether a bigint is greater than a 64-bit signed integer value.

left: The first value to compare.

right: The second value to compare.

Parameters

returns

true if left is greater than right; otherwise, false.

operator > (bigint left, ulong right) Source #

Returns a value that indicates whether a bigint value is greater than a 64-bit unsigned integer.

left: The first value to compare.

right: The second value to compare.

Parameters

returns

true if left is greater than right; otherwise, false.

operator <= (long left, bigint right) Source #

Returns a value that indicates whether a 64-bit signed integer is less than or equal to a bigint value.

left: The first value to compare.

right: The second value to compare.

Parameters

returns

true if left is less than or equal to right; otherwise, false.

operator <= (bigint left, long right) Source #

Returns a value that indicates whether a bigint value is less than or equal to a 64-bit signed integer.

left: The first value to compare.

right: The second value to compare.

Parameters

returns

true if left is less than or equal to right; otherwise, false.

operator <= (bigint left, bigint right) Source #

Returns a value that indicates whether a bigint value is less than or equal to another bigint value.

left: The first value to compare.

right: The second value to compare.

Parameters

returns

true if left is less than or equal to right; otherwise, false.

operator <= (BigInteger left, bigint right) Source #

Returns a value that indicates whether a bigint value is less than or equal to another bigint value.

left: The first value to compare.

right: The second value to compare.

Parameters

returns

true if left is less than or equal to right; otherwise, false.

operator <= (bigint left, BigInteger right) Source #

Returns a value that indicates whether a bigint value is less than or equal to another bigint value.

left: The first value to compare.

right: The second value to compare.

Parameters

returns

true if left is less than or equal to right; otherwise, false.

operator <= (bigint left, ulong right) Source #

Returns a value that indicates whether a bigint value is less than or equal to a 64-bit unsigned integer.

left: The first value to compare.

right: The second value to compare.

Parameters

returns

true if left is less than or equal to right; otherwise, false.

operator <= (ulong left, bigint right) Source #

Returns a value that indicates whether a 64-bit unsigned integer is less than or equal to a bigint value.

left: The first value to compare.

right: The second value to compare.

Parameters

returns

true if left is less than or equal to right; otherwise, false.

operator >= (long left, bigint right) Source #

Returns a value that indicates whether a 64-bit signed integer is greater than or equal to a bigint value.

left: The first value to compare.

right: The second value to compare.

Parameters

returns

true if left is greater than right; otherwise, false.

operator >= (bigint left, long right) Source #

Returns a value that indicates whether a bigint value is greater than or equal to a 64-bit signed integer value.

left: The first value to compare.

right: The second value to compare.

Parameters

returns

true if left is greater than right; otherwise, false.

operator >= (bigint left, bigint right) Source #

Returns a value that indicates whether a bigint value is greater than or equal to another bigint value.

left: The first value to compare.

right: The second value to compare.

Parameters

returns

true if left is greater than right; otherwise, false.

operator >= (BigInteger left, bigint right) Source #

Returns a value that indicates whether a bigint value is greater than or equal to another bigint value.

left: The first value to compare.

right: The second value to compare.

Parameters

returns

true if left is greater than right; otherwise, false.

operator >= (bigint left, BigInteger right) Source #

Returns a value that indicates whether a bigint value is greater than or equal to another bigint value.

left: The first value to compare.

right: The second value to compare.

Parameters

returns

true if left is greater than right; otherwise, false.

operator >= (ulong left, bigint right) Source #

Returns a value that indicates whether a 64-bit unsigned integer is greater than or equal to a bigint value.

left: The first value to compare.

right: The second value to compare.

Parameters

returns

true if left is greater than right; otherwise, false.

operator >= (bigint left, ulong right) Source #

Returns a value that indicates whether a bigint value is greater than or equal to a 64-bit unsigned integer value.

left: The first value to compare.

right: The second value to compare.

Parameters

returns

true if left is greater than right; otherwise, false.